home *** CD-ROM | disk | FTP | other *** search
- /*
- File: Shape.r
-
- Copyright (c) 1996, Adobe Systems Incorporated.
- All rights reserved.
-
- Rez file for Shape selection example.
- */
-
- /********************************************************************************/
- /* Defines for include files */
-
- #define plugInName "Shape"
- #define VersionString "4.0"
-
- /********************************************************************************/
-
- #if Macintosh
- #include "Types.r"
- #include "SysTypes.r"
- #include "PIGeneral.r"
- #include "PIUtilities.r"
- #include "DialogUtilities.r"
- #endif
-
- #if MSWindows
- #include "PIGeneral.h"
- #include "PIUtilities.r"
- #include "WinDialogUtils.r"
- #endif
-
- #include "PIActions.h"
-
- /********************************************************************************/
-
- #define plugInComment "shape example selection plug-in"
- #define vendorName "AdobeSDK"
- #define ourSuiteID 'sdK8'
- #define ourClassID ourSuiteID
- #define ourEventID 'shpE'
-
- #define shapeTriangle 'shP0'
- #define shapeSquare 'shP1'
- #define shapeCircle 'shP2'
- #define shapeStar 'shP3'
- #define shapeTreble 'shP4'
- #define shapeRibbon 'shP5'
- #define shapeNote 'shP6'
- #define typeShape 'tshP'
- #define keyCreate 'kcrE'
- #define typeCreate 'tcrE'
-
- #define createSelection 'crE0'
- #define createMaskpath 'crE1'
- #define createLayer 'crE2'
-
- #define PathResource 'Path'
-
- /********************************************************************************/
-
- resource 'PiPL' (ResourceID, purgeable)
- {
- {
- Kind { Selection },
- Name { plugInName "..." },
- Category { vendorName },
- Version { (latestSelectionVersion << 16) | latestSelectionSubVersion },
-
- HasTerminology { ourClassID, ourEventID, ResourceID, "" },
- /* classID, eventID, aete ID, uniqueString */
-
- EnableInfo { "true" },
-
- #if Macintosh
- Code68K { Selection, $$ID },
- CodePowerPC { 0, 0, "" },
- #endif
-
- #if MSWindows
- CodeWin32X86 { "ENTRYPOINT" },
- #endif
- }
- };
-
- /* About resources */
-
- resource StringResource (AboutID, "About Text", purgeable)
- {
- plugInName "\n\n"
- "by Miriam Poursaied, Amacker Bullwinkle, Andrew Coven, and Mark Hamburg.\n\n"
- "Version " VersionString " "
- "Release " ReleaseString "\n"
- "Copyright ⌐ 1996, Adobe Systems Incorporated.\n"
- "All rights reserved.\n\n"
- "An example plug-in selection module for Adobe Photoshop¿."
- };
-
- /* Parameters Dialog */
-
- resource 'DLOG' (ResourceID+1, "UI", purgeable)
- {
- {259, 337, 503, 569},
- movableDBoxProc,
- visible,
- goAway,
- 0x0,
- ResourceID+1,
- plugInName
- };
-
- resource 'DITL' (ResourceID+1, "UI", purgeable) {
- { /* array DITLarray: 14 elements */
- /* [1] */
- {216, 156, 236, 224},
- Button {
- enabled,
- "OK"
- },
- /* [2] */
- {216, 76, 236, 140},
- Button {
- enabled,
- "Cancel"
- },
- /* [3] */
- {8, 36, 36, 88},
- StaticText {
- disabled,
- "Shape:"
- },
- /* [4] */
- {8, 92, 24, 196},
- RadioButton {
- enabled,
- "Triangle"
- },
- /* [5] */
- {24, 92, 40, 196},
- RadioButton {
- enabled,
- "Square"
- },
- /* [6] */
- {40, 92, 56, 196},
- RadioButton {
- enabled,
- "Circle"
- },
- /* [7] */
- {56, 92, 72, 196},
- RadioButton {
- enabled,
- "Star"
- },
- /* [8] */
- {72, 92, 88, 196},
- RadioButton {
- enabled,
- "Treble"
- },
- /* [9] */
- {88, 92, 104, 196},
- RadioButton {
- enabled,
- "Ribbon"
- },
- /* [10] */
- {104, 92, 120, 196},
- RadioButton {
- enabled,
- "Note"
- },
- /* [11] */
- {152, 36, 180, 88},
- StaticText {
- disabled,
- "Create:"
- },
- /* [12] */
- {152, 92, 168, 196},
- RadioButton {
- enabled,
- "Selection"
- },
- /* [13] */
- {168, 92, 184, 196},
- RadioButton {
- enabled,
- "Mask path"
- },
- /* [14] */
- {184, 92, 200, 196},
- RadioButton {
- enabled,
- "Layer"
- }
- }
- };
-
- /* Scripting resource */
-
- resource 'aete' (ResourceID, "Scripting dictionary", purgeable)
- {
- 1, 0, english, roman, /* aete version and language specifiers */
- {
- "AdobeSDK", /* vendor suite name */
- "Adobe example plug-ins", /* optional description */
- ourSuiteID, /* suite ID */
- 1, /* suite code, must be 1 */
- 1, /* suite level, must be 1 */
- { /* structure for filters */
- "AdobeSDK shape", /* unique selection name */
- "shape selection plug-in", /* optional description */
- ourClassID, /* class ID, must be unique or Suite ID */
- ourEventID, /* event ID, must be unique */
-
- NO_REPLY, /* never a reply */
- IMAGE_DIRECT_PARAMETER, /* direct parameter, used by Photoshop */
- { /* parameters here, if any */
- "shape", /* parameter name */
- keyShape, /* parameter key ID */
- typeShape, /* parameter type ID */
- "shape type", /* optional description */
- flagsEnumeratedParameter, /* parameter flags */
-
- "create", /* parameter name */
- keyCreate, /* parameter key ID */
- typeCreate, /* parameter type ID */
- "create type", /* optional description */
- flagsEnumeratedParameter /* parameter flags */
-
- }
- },
- {}, /* non-filter plug-in class here */
- {}, /* comparison ops (not supported) */
- { /* enumerations */
- typeShape, /* type shape 'tshP' */
- {
- "triangle", /* first value */
- shapeTriangle, /* 'shP0' */
- "triangle path", /* optional description */
-
- "square", /* second value */
- shapeSquare, /* 'shP1' */
- "square path", /* optional description */
-
- "circle", /* third value */
- shapeCircle, /* 'shP2' */
- "circle path", /* optional description */
-
- "star", /* fourth value */
- shapeStar, /* 'shP3' */
- "star path", /* optional description */
-
- "treble", /* fifth value */
- shapeTreble, /* 'shP4' */
- "treble path", /* optional description */
-
- "ribbon", /* sixth value */
- shapeRibbon, /* 'shP5' */
- "ribbon path", /* optional description */
-
- "note", /* seventh value */
- shapeNote, /* 'shP6' */
- "note path" /* optional description */
- },
-
- typeCreate, /* type shape 'tshP' */
- {
- "selection", /* first value */
- createSelection, /* 'crE0' */
- "make selection", /* optional description */
-
- "mask path", /* second value */
- createMaskpath, /* 'crE1' */
- "make mask path", /* optional description */
-
- "layer", /* third value */
- createLayer, /* 'crE2' */
- "make layer" /* optional description */
- }
- } /* any enumerations */
- }
- };
-
- /* The paths. */
-
- data PathResource (ResourceID, "Triangle") {
- $"0006 0000 0000 0000 0000 0000 0000 0000" /*................ */
- $"0000 0000 0000 0000 0000 0000 0003 0000" /*................ */
- $"0000 0000 0000 0000 0000 0000 0000 0000" /*................ */
- $"0000 0000 0001 0086 8000 0016 8000 0086" /*.......åÇ...Ç..å */
- $"8000 0016 8000 0086 8000 0016 8000 0001" /*Ç...Ç..åÇ...Ç... */
- $"0015 8000 0088 0000 0015 8000 0088 0000" /*..Ç..ê....Ç..ê.. */
- $"0015 8000 0088 0000 0001 00C2 8000 00D0" /*..Ç..ê.....┬Ç..- */
- $"0000 00C2 8000 00D0 0000 00C2 8000 00D0" /*...€..-...€..- */
- $"0000" /* .. */
- };
-
- data PathResource (ResourceID+1, "Square") {
- $"0006 0000 0000 0000 0000 0000 0000 0000" /* ................ */
- $"0000 0000 0000 0000 0000 0000 0004 0000" /* ................ */
- $"0000 0000 0000 0000 0000 0000 0000 0000" /* ................ */
- $"0000 0000 0001 002A AAAB 002A 684C 002A" /* .......*¬½.*hL.* */
- $"AAAB 002A 684C 002A AAAB 002A 684C 0001" /* ¬½.*hL.*¬½.*hL.. */
- $"00D6 2AAB 002A 684C 00D6 2AAB 002A 684C" /* .╓*½.*hL.╓*½.*hL */
- $"00D6 2AAB 002A 684C 0001 00D6 2AAB 00D5" /* .╓*½.*hL...╓*½.╒ */
- $"2AAB 00D6 2AAB 00D5 2AAB 00D6 2AAB 00D5" /* *½.╓*½.╒*½.╓*½.╒ */
- $"2AAB 0001 002A AAAB 00D5 2AAB 002A AAAB" /* *½...*¬½.╒*½.*¬½ */
- $"00D5 2AAB 002A AAAB 00D5 2AAB" /* .╒*½.*¬½.╒*½ */
- };
-
- data PathResource (ResourceID+2, "Circle") {
- $"0006 0000 0000 0000 0000 0000 0000 0000" /* ................ */
- $"0000 0000 0000 0000 0000 0000 0002 0000" /* ................ */
- $"0000 0000 0000 0000 0000 0000 0000 0000" /* ................ */
- $"0000 0000 0001 001F A5ED 00FB 2AAB 001F" /* ........Ñφ.√*½.. */
- $"A5ED 0080 425F 001F A5ED 0005 8000 0001" /* Ñφ.ÇB_..Ñφ..Ç... */
- $"00E0 0000 0005 0000 00E0 0000 0080 425F" /* .α.......α...ÇB_ */
- $"00E0 0000 00FA 12F7" /* .α...·.≈ */
- };
-
- data PathResource (ResourceID+3, "Star") {
- $"0006 0000 0000 0000 0000 0000 0000 0000" /* ................ */
- $"0000 0000 0000 0000 0000 0000 0003 0000" /* ................ */
- $"0000 0000 0000 0000 0000 0000 0000 0000" /* ................ */
- $"0000 0000 0001 002C F915 0077 A6F5 002C" /* .......,∙..wª⌡., */
- $"F915 0077 A6F5 002C F915 0077 A6F5 0001" /* ∙..wª⌡.,∙..wª⌡.. */
- $"009B ACF9 0032 1643 009B ACF9 0032 1643" /* .¢¼∙.2.C.¢¼∙.2.C */
- $"009B ACF9 0032 1643 0001 009F 2298 00B6" /* .¢¼∙.2.C...ƒ"ÿ.╢ */
- $"42C8 009F 2298 00B6 42C8 009F 2298 00B6" /* B╚.ƒ"ÿ.╢B╚.ƒ"ÿ.╢ */
- $"42C8 0000 0003 0000 0000 0000 0000 0000" /* B╚.............. */
- $"0000 0000 0000 0000 0000 0000 0001 0046" /* ...............F */
- $"EB3E 002F 4DEA 0046 EB3E 002F 4DEA 0046" /* δ>./MΩ.Fδ>./MΩ.F */
- $"EB3E 002F 4DEA 0001 0048 A60E 00B9 0B21" /* δ>./MΩ...Hª..╣.! */
- $"0048 A60E 00B9 0B21 0048 A60E 00B9 0B21" /* .Hª..╣.!.Hª..╣.! */
- $"0001 00C5 306F 0073 7A6F 00C5 306F 0073" /* ...┼0o.szo.┼0o.s */
- $"7A6F 00C5 306F 0073 7A6F" /* zo.┼0o.szo */
- };
-
-
- data PathResource (ResourceID+4, "Treble") {
- $"0006 0000 0000 0000 0000 0000 0000 0000" /* ................ */
- $"0000 0000 0000 0000 0000 0000 0002 0000" /* ................ */
- $"0000 0000 0000 0000 0000 0000 0000 0000" /* ................ */
- $"0000 0000 0002 0059 D27D 0090 6C17 0057" /* .......Y╥}.Él..W */
- $"7777 008B 60B6 005B 5B06 008C 2222 0001" /* ww.ï`╢.[[..î"".. */
- $"006A 05B0 008C EEEF 0062 2222 0091 1111" /* .j.░.îε∩.b"".æ.. */
- $"005B 49F5 0094 9F4A 0000 000A 0000 0000" /* .[I⌡.öƒJ........ */
- $"0000 0000 0000 0000 0000 0000 0000 0000" /* ................ */
- $"0000 0002 004E 3E94 0087 6666 004C CCCD" /* .....N>ö.çff.L╠═ */
- $"0087 1C72 004E 8889 0085 4444 0001 0051" /* .ç.r.Nêë.àDD...Q */
- $"2222 0082 16C1 0053 3333 0080 B60B 0059" /* "".é.┴.S33.Ç╢..Y */
- $"F49F 007C 1C72 0001 0064 EEEF 007E 3E94" /* ⌠ƒ.|.r...dε∩.~>ö */
- $"0066 6666 0086 6666 0066 CCCD 0088 BBBC" /* .fff.åff.f╠═.ê╗╝ */
- $"0002 0065 C71C 008B 7D28 0065 B05B 008C" /* ...e╟..ï}(.e░[.î */
- $"CCCD 0063 49F5 008C 4444 0001 0060 DDDE" /* ╠═.cI⌡.îDD...`▌▐ */
- $"008B EEEF 005D DDDE 008B 60B6 0054 1111" /* .ïε∩.]▌▐.ï`╢.T.. */
- $"0089 8E39 0002 0056 EEEF 0087 38E4 005F" /* .ëÄ9...Vε∩.ç8Σ._ */
- $"49F5 0085 B05B 0060 49F5 0086 DDDE 0002" /* I⌡.à░[.`I⌡.å▌▐.. */
- $"0061 D27D 0088 0B61 0062 D82E 0089 3E94" /* .a╥}.ê.a.b╪..ë>ö */
- $"0062 60B6 0088 8889 0001 0063 2222 0087" /* .b`╢.êêë...c"".ç */
- $"DDDE 0062 D82E 0087 1C72 0061 1C72 0082" /* ▌▐.b╪..ç.r.a.r.é */
- $"AAAB 0001 0058 FA50 0082 2D83 0055 5555" /* ¬½...X·P.é-â.UUU */
- $"0084 FA50 0054 AAAB 0085 7777 0001 0053" /* .ä·P.T¬½.àww...S */
- $"DDDE 0088 4FA5 0053 3333 0088 8889 0050" /* ▌▐.êOÑ.S33.êêë.P */
- $"4444 0089 7777 0000 0006 0000 0000 0000" /* DD.ëww.......... */
- $"0000 0000 0000 0000 0000 0000 0000 0000" /* ................ */
- $"0002 0035 D82E 008B 3E94 0035 5555 008A" /* ...5╪..ï>ö.5UU.è */
- $"AAAB 0036 C71C 0089 9F4A 0001 0039 05B0" /* ¬½.6╟..ëƒJ...9.░ */
- $"0087 7D28 003B 05B0 0087 1C72 003C C16C" /* .ç}(.;.░.ç.r.<┴l */
- $"0086 C16C 0002 003E E93F 0087 1C72 0040" /* .å┴l...>Θ?.ç.r.@ */
- $"B60B 0087 1C72 0040 D27D 0087 5B06 0002" /* ╢..ç.r.@╥}.ç[... */
- $"0043 E93F 0087 1C72 0044 4444 0087 1C72" /* .CΘ?.ç.r.DDD.ç.r */
- $"0043 F49F 0087 5555 0001 0043 D82E 0088" /* .C⌠ƒ.çUU...C╪..ê */
- $"EEEF 0043 8E39 0089 3E94 0042 60B6 008A" /* ε∩.CÄ9.ë>ö.B`╢.è */
- $"71C7 0001 0038 4FA5 0090 16C1 0036 0B61" /* q╟...8OÑ.É.┴.6.a */
- $"008D 82D8 0035 93E9 008C FA50 0000 001A" /* .ìé╪.5ôΘ.î·P.... */
- $"0000 0000 0000 0000 0000 0000 0000 0000" /* ................ */
- $"0000 0000 0000 0002 0033 49F5 0087 16C1" /* .........3I⌡.ç.┴ */
- $"002E EEEF 008A AAAB 002E EEEF 008A AAAB" /* ..ε∩.謽..ε∩.謽 */
- $"0001 0030 9F4A 008D 4444 0031 1111 008D" /* ...0ƒJ.ìDD.1...ì */
- $"82D8 0037 1111 0090 E93F 0001 0041 C16C" /* é╪.7...ÉΘ?...A┴l */
- $"008F DDDE 0047 1C72 008C CCCD 0048 16C1" /* .Å▌▐.G.r.î╠═.H.┴ */
- $"008C 38E4 0001 004A 7777 0088 B05B 004B" /* .î8Σ...Jww.ê░[.K */
- $"60B6 0088 8889 004C 93E9 0088 49F5 0002" /* `╢.êêë.LôΘ.êI⌡.. */
- $"0050 4444 0089 9F4A 0052 7D28 0089 F49F" /* .PDD.ëƒJ.R}(.ë⌠ƒ */
- $"0052 D82E 008C A4FA 0001 0052 38E4 008E" /* .R╪..îñ·...R8Σ.Ä */
- $"38E4 0053 3333 0090 5B06 0055 C71C 0096" /* 8Σ.S33.É[..U╟..û */
- $"0000 0001 005F 0000 0096 05B0 0063 8E39" /* ....._...û.░.cÄ9 */
- $"0092 7D28 0065 1C72 0091 4444 0002 0065" /* .Æ}(.e.r.æDD...e */
- $"49F5 008F F49F 0066 6666 008E 38E4 006B" /* I⌡.Å⌠ƒ.fff.Ä8Σ.k */
- $"7777 008F 5555 0001 0075 E93F 0092 9F4A" /* ww.ÅUU...uΘ?.ƃJ */
- $"0078 2D83 008C CCCD 0078 7777 008C 05B0" /* .x-â.î╠═.xww.î.░ */
- $"0002 0077 B60B 008B 5B06 0078 2D83 008A" /* ...w╢..ï[..x-â.è */
- $"AAAB 0078 2D83 008A AAAB 0001 0079 1C72" /* ¬½.x-â.謽...y.r */
- $"0086 49F5 0078 2D83 0084 4444 0075 A4FA" /* .åI⌡.x-â.äDD.uñ· */
- $"007E D27D 0002 0070 C16C 0081 3E94 006D" /* .~╥}...p┴l.ü>ö.m */
- $"82D8 0083 8E39 006D C16C 0084 9F4A 0002" /* é╪.âÄ9.m┴l.äƒJ.. */
- $"006D 82D8 0086 05B0 006D 82D8 0087 1C72" /* .mé╪.å.░.mé╪.ç.r */
- $"006D A4FA 0087 2D83 0002 006E EEEF 0087" /* .mñ·.ç-â...nε∩.ç */
- $"D27D 006E EEEF 0087 D27D 006E EEEF 0087" /* ╥}.nε∩.ç╥}.nε∩.ç */
- $"D27D 0002 006F 8E39 0089 16C1 006F A4FA" /* ╥}...oÄ9.ë.┴.oñ· */
- $"0089 3E94 0070 6666 0089 27D2 0002 0073" /* .ë>ö.pff.ë'╥...s */
- $"9F4A 0088 93E9 0073 3333 0088 8889 0073" /* ƒJ.êôΘ.s33.êêë.s */
- $"3333 0088 8889 0002 0075 5555 0087 D27D" /* 33.êêë...uUU.ç╥} */
- $"0075 5555 0087 D27D 0075 5555 0087 93E9" /* .uUU.ç╥}.uUU.çôΘ */
- $"0002 0075 2D83 0085 D82E 0075 5555 0085" /* ...u-â.à╪..uUU.à */
- $"B05B 0075 C71C 0085 D82E 0002 0077 7777" /* ░[.u╟..à╪....www */
- $"0086 6666 0077 7777 0086 6666 0077 3333" /* .åff.www.åff.w33 */
- $"0087 C16C 0001 0077 D27D 0089 4FA5 0077" /* .ç┴l...w╥}.ëOÑ.w */
- $"7777 008A AAAB 0075 DDDE 0090 82D8 0002" /* ww.謽.u▌▐.Éé╪.. */
- $"006D F49F 008E 4FA5 0068 8889 008D 82D8" /* .m⌠ƒ.ÄOÑ.hêë.ìé╪ */
- $"0068 7777 008C 1111 0002 0068 2222 008D" /* .hww.î.....h"".ì */
- $"1111 0067 1C72 008C CCCD 0067 4FA5 008A" /* ...g.r.î╠═.gOÑ.è */
- $"1111 0001 0068 4FA5 0086 A4FA 0067 1C72" /* .....hOÑ.åñ·.g.r */
- $"0083 8E39 0064 9F4A 007D 38E4 0001 0059" /* .âÄ9.dƒJ.}8Σ...Y */
- $"8889 0078 71C7 0051 1111 007C 71C7 004E" /* êë.xq╟.Q...|q╟.N */
- $"8E39 007D 999A 0001 0046 F49F 0086 27D2" /* Ä9.}ÖÜ...F⌠ƒ.å'╥ */
- $"0045 B05B 0086 6666 0045 27D2 0086 7D28" /* .E░[.åff.E'╥.å}( */
- $"0001 0041 C71C 0085 05B0 0041 6C17 0084" /* ...A╟..à.░.Al..ä */
- $"FA50 0038 2222 0083 B05B" /* ·P.8"".â░[ */
- };
-
- data PathResource (ResourceID+5, "Ribbon") {
- $"0006 0000 0000 0000 0000 0000 0000 0000" /* ................ */
- $"0000 0000 0000 0000 0000 0000 000B 0000" /* ................ */
- $"0000 0000 0000 0000 0000 0000 0000 0000" /* ................ */
- $"0000 0000 0001 005C 3333 0066 B05B 005C" /* .......\33.f░[.\ */
- $"71C7 0067 1C72 0060 27D2 006D 8889 0002" /* q╟.g.r.`'╥.mêë.. */
- $"0065 C16C 0068 49F5 0069 F49F 0065 B05B" /* .e┴l.hI⌡.i⌠ƒ.e░[ */
- $"006B 8889 0066 E38E 0001 006D AAAB 006A" /* .kêë.fπÄ...m¬½.j */
- $"2222 006F A4FA 006A AAAB 0070 71C7 006A" /* "".oñ·.j¬½.pq╟.j */
- $"DDDE 0002 0071 B05B 006A 5B06 0072 7D28" /* ▌▐...q░[.j[..r}( */
- $"006A AAAB 0073 B05B 0069 60B6 0001 0075" /* .j¬½.s░[.i`╢...u */
- $"A4FA 0066 1C72 0077 7777 0065 B05B 0078" /* ñ·.f.r.www.e░[.x */
- $"0B61 0065 8889 0001 007C 9F4A 0068 0000" /* .a.eêë...|ƒJ.h.. */
- $"007B 05B0 0065 B05B 0077 2D83 0060 27D2" /* .{.░.e░[.w-â.`'╥ */
- $"0002 0072 6C17 0064 DDDE 006F A4FA 0067" /* ...rl..d▌▐.oñ·.g */
- $"D27D 006E 1111 0067 16C1 0001 006C CCCD" /* ╥}.n...g.┴...l╠═ */
- $"0067 4FA5 006B 60B6 0066 6666 0069 0000" /* .gOÑ.k`╢.fff.i.. */
- $"0064 D82E 0001 0068 60B6 0061 A4FA 0064" /* .d╪....h`╢.añ·.d */
- $"4444 0063 8E39 0063 60B6 0063 F49F 0001" /* DD.cÄ9.c`╢.c⌠ƒ.. */
- $"0062 4FA5 0066 C71C 0061 6C17 0067 1C72" /* .bOÑ.f╟..al..g.r */
- $"0061 6C17 0067 1C72 0002 0060 0000 0067" /* .al..g.r...`...g */
- $"1C72 0060 0000 0067 1C72 0060 0B61 0067" /* .r.`...g.r.`.a.g */
- $"1C72" /* .r */
- };
-
- data PathResource (ResourceID+6, "Note") {
- $"0006 0000 0000 0000 0000 0000 0000 0000" /* ................ */
- $"0000 0000 0000 0000 0000 0000 0002 0000" /* ................ */
- $"0000 0000 0000 0000 0000 0000 0000 0000" /* ................ */
- $"0000 0000 0002 0083 5B06 006A B05B 007E" /* .......â[..j░[.~ */
- $"93E9 0062 D82E 0088 71C7 0065 BBBC 0002" /* ôΘ.b╪..êq╟.e╗╝.. */
- $"0089 6666 006A 60B6 0090 5B06 006F A4FA" /* .ëff.j`╢.É[..oñ· */
- $"0084 BBBC 006E 1111 0000 000B 0000 0000" /* .ä╗╝.n.......... */
- $"0000 0000 0000 0000 0000 0000 0000 0000" /* ................ */
- $"0000 0002 0080 E93F 0061 999A 0073 E93F" /* .....ÇΘ?.aÖÜ.sΘ? */
- $"0062 2222 007B 9F4A 0064 BBBC 0001 007D" /* .b"".{ƒJ.d╗╝...} */
- $"FA50 006B A4FA 0084 4444 006E EEEF 0089" /* ·P.kñ·.äDD.nε∩.ë */
- $"8E39 0071 B05B 0001 008D 1111 006F 82D8" /* Ä9.q░[...ì...oé╪ */
- $"0093 3333 0070 5B06 0093 3333 0070 5B06" /* .ô33.p[..ô33.p[. */
- $"0001 0096 0B61 0071 C71C 0096 0B61 0071" /* ...û.a.q╟..û.a.q */
- $"C71C 0099 FA50 0072 2D83 0001 009E EEEF" /* ╟..Ö·P.r-â...₧ε∩ */
- $"0071 38E4 00A1 6C17 006F A4FA 00A1 9F4A" /* .q8Σ.íl..oñ·.íƒJ */
- $"006F 82D8 0002 00A1 F49F 006E 49F5 00A2" /* .oé╪...í⌠ƒ.nI⌡.ó */
- $"2222 006E 38E4 0092 7D28 0072 FA50 0002" /* "".n8Σ.Æ}(.r·P.. */
- $"0090 EEEF 006D 2222 008A AAAB 0062 D82E" /* .Éε∩.m"".謽.b╪. */
- $"0091 F49F 0062 D82E 0001 009E D27D 0064" /* .æ⌠ƒ.b╪....₧╥}.d */
- $"9F4A 00A5 B05B 0062 D82E 00AC 0B61 0061" /* ƒJ.Ñ░[.b╪..¼.a.a */
- $"27D2 0001 00B1 60B6 004F 5555 00A5 B05B" /* '╥...▒`╢.OUU.Ñ░[ */
- $"0051 C71C 00A4 F49F 0051 E93F 0001 00A4" /* .Q╟..ñ⌠ƒ.QΘ?...ñ */
- $"0B61 0053 7777 00A3 8E39 0053 E93F 009E" /* .a.Sww.úÄ9.SΘ?.₧ */
- $"C16C 0058 05B0 0002 009E 6C17 0059 AAAB" /* ┴l.X.░...₧l..Y¬½ */
- $"009F 49F5 0061 6C17 0091 1111 0061 6C17" /* .ƒI⌡.al..æ...al. */
- };
-